无码av在线一区二区三区_中文字字幕在线无线码_国产高清在线精品一区app_国产成人综合色在线观看网站

 
技術(shù)博客INFO
聯(lián)系我們CONTACT

公司地址:茂名市人民南路新村大院22號(hào)101

電話:13592986386

KindEditor JS 賦值您當(dāng)前的位置:首頁 > KindEditor JS 賦值

KindEditor JS 賦值

發(fā)布時(shí)間:2019/5/8 10:14:42

    <script>
        var editor1=null;

        KindEditor.ready(function (K) {
             editor1 = K.create('#Content_FTB', {
                cssPath: '/kindeditor/plugins/code/prettify.css',
                uploadJson: '/kindeditor/upload_json.ashx',
                fileManagerJson: '/kindeditor/file_manager_json.ashx',
                allowFileManager: true,
                afterCreate: function () {
                    var self = this;
                    K.ctrl(document, 13, function () {
                        self.sync();
                        K('form[name=Form1]')[0].submit();
                    });
                    K.ctrl(self.edit.doc, 13, function () {
                        self.sync();
                        K('form[name=Form1]')[0].submit();
                    });
                }
            });
            prettyPrint();
        });
    </script>




--第二步

 editor1.insertHtml(cComments);